finish Github Action 自动部署

自动部署指令常用

添加所有文件到暂存区

1
git add .

提交代码

1
git commit -m "github action update"

推送到main分支

1
git push origin main

依次执行三条指令,节约上传时间,代码在github由CI自动编译,避免编写3分钟编译3小时。。。